home *** CD-ROM | disk | FTP | other *** search
/ Power Programmierung / Power-Programmierung (Tewi)(1994).iso / magazine / c_news / 18 / beginner / printres.c < prev   
Text File  |  1989-11-14  |  225b  |  9 lines

  1. /* This function prints out the average of the numbers that have
  2.    been entered or read in */
  3. void print_results (float average)
  4. {
  5.     printf ("\nThe average of the four numbers is: %f\n", average);
  6.     return;
  7. }
  8. 
  9.